home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tech Arsenal 1
/
Tech Arsenal (Arsenal Computer).ISO
/
tek-04
/
xlib03.zip
/
XPOINT.H
< prev
next >
Wrap
Text File
|
1993-04-05
|
1KB
|
45 lines
/*-----------------------------------------------------------------------
;
; XPOINT - header file
;
;
;
; ****** XLIB - Mode X graphics library ****************
; ****** ****************
; ****** Written By Themie Gouthas ****************
; ****** Aeronautical Research Laboratory ****************
; ****** Defence Science and Technology Organisation ****************
; ****** Australia ****************
;
; egg@dstos3.dsto.gov.au
; teg@bart.dsto.gov.au
;
; Terminology & notes:
; VRAM == Video RAM
; SRAM == System RAM
; X coordinates are in pixels unless explicitly stated
;
;-----------------------------------------------------------------------*/
#ifndef _XPOINT_H_
#define _XPOINT_H_
/* FUNCTIONS =========================================================== */
extern void x_put_pix( /* Draw a pixel on the screen */
WORD X,
WORD Y,
WORD PageOffset,
WORD Color);
extern WORD x_get_pix( /* Read a pixel from the screen */
WORD X,
WORD Y,
WORD PageBase);
#endif